home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 21 / Cream of the Crop 21 (Terry Blount) (October 1996).iso / comm / msged400.zip / src / dialogs.h < prev    next >
C/C++ Source or Header  |  1996-06-20  |  637b  |  24 lines

  1. /*
  2.  *  DIALOGS.H
  3.  *
  4.  *  Written on 10-Jul-94 by John Dennis and released to the public domain.
  5.  *
  6.  *  Definitions and prototypes for the dialog boxes.
  7.  */
  8.  
  9. #ifndef DIALOGS_H_INCLUDED
  10. #define DIALOGS_H_INCLUDED
  11.  
  12. extern dlgbox settings;
  13.  
  14. void WriteSettings(void);
  15. void ReadSettings(void);
  16. int GetString(char *title, char *msg, char *buf, int len);
  17. void SetupButton(button * b, char *txt, int x, int y, unsigned char sel,
  18.                  unsigned char norm, unsigned char back);
  19. int ChoiceBox(char *title, char *txt, char *b1, char *b2, char *b3);
  20. void SetDlgColor(dlgbox * Dlg);
  21. void SetDialogColors(void);
  22.  
  23. #endif
  24.